home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH19.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-30  |  136 b   |  9 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  char x;
  5.  printf("Please enter a character: ");
  6.  x = getche();
  7.  printf("\nYou entered %c.", x);
  8.  }
  9.